home *** CD-ROM | disk | FTP | other *** search
/ Champak 114 / Vol 114.iso / games / cheeky_c.swf / scripts / DefineButton2_73 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2010-08-12  |  309 b   |  13 lines

  1. on(release){
  2.    if(0 < _root.runtime.crowdBg_sound.getVolume())
  3.    {
  4.       _root.runtime.crowdBg_sound.setVolume(0);
  5.       _root.soundControl_mc.gotoAndStop("soundOff");
  6.    }
  7.    else
  8.    {
  9.       _root.runtime.crowdBg_sound.setVolume(100);
  10.       _root.soundControl_mc.gotoAndStop("soundOn");
  11.    }
  12. }
  13.